home *** CD-ROM | disk | FTP | other *** search
- /*
- File: Components.k.h
-
- Contains: QuickTime interfaces
-
- Version: Technology:
- Release: QuickTime 3.0
-
- Copyright: © 1990-1998 by Apple Computer, Inc., all rights reserved
-
- Bugs?: Please include the the file and version information (from above) with
- the problem description. Developers belonging to one of the Apple
- developer programs can submit bug reports to:
-
- devsupport@apple.com
-
- */
- #ifndef __COMPONENTS_K__
- #define __COMPONENTS_K__
-
- #include <Components.h>
-
- /*
- Example usage:
-
- #define CALLCOMPONENT_BASENAME() Fred
- #define CALLCOMPONENT_GLOBALS() FredGlobalsHandle
- #include <Components.k.h>
-
- To specify that your component implementation does not use globals, do not #define CALLCOMPONENT_GLOBALS
- */
- #ifdef CALLCOMPONENT_BASENAME
- #ifndef CALLCOMPONENT_GLOBALS
- #define CALLCOMPONENT_GLOBALS()
- #define ADD_CALLCOMPONENT_COMMA
- #else
- #define ADD_CALLCOMPONENT_COMMA ,
- #endif
- #define CALLCOMPONENT_GLUE(a,b) a##b
- #define CALLCOMPONENT_STRCAT(a,b) CALLCOMPONENT_GLUE(a,b)
- #define ADD_CALLCOMPONENT_BASENAME(name) CALLCOMPONENT_STRCAT(CALLCOMPONENT_BASENAME(),name)
-
- EXTERN_API( ComponentResult ) ADD_CALLCOMPONENT_BASENAME(Open) (CALLCOMPONENT_GLOBALS() ADD_CALLCOMPONENT_COMMA ComponentInstance self);
-
- EXTERN_API( ComponentResult ) ADD_CALLCOMPONENT_BASENAME(Close) (CALLCOMPONENT_GLOBALS() ADD_CALLCOMPONENT_COMMA ComponentInstance self);
-
- EXTERN_API( ComponentResult ) ADD_CALLCOMPONENT_BASENAME(CanDo) (CALLCOMPONENT_GLOBALS() ADD_CALLCOMPONENT_COMMA short ftnNumber);
-
- EXTERN_API( ComponentResult ) ADD_CALLCOMPONENT_BASENAME(Version) (CALLCOMPONENT_GLOBALS());
-
- EXTERN_API( ComponentResult ) ADD_CALLCOMPONENT_BASENAME(Register) (CALLCOMPONENT_GLOBALS());
-
- EXTERN_API( ComponentResult ) ADD_CALLCOMPONENT_BASENAME(Target) (CALLCOMPONENT_GLOBALS() ADD_CALLCOMPONENT_COMMA ComponentInstance target);
-
- EXTERN_API( ComponentResult ) ADD_CALLCOMPONENT_BASENAME(Unregister) (CALLCOMPONENT_GLOBALS());
-
- EXTERN_API( ComponentResult ) ADD_CALLCOMPONENT_BASENAME(GetMPWorkFunction) (CALLCOMPONENT_GLOBALS() ADD_CALLCOMPONENT_COMMA ComponentMPWorkFunctionUPP * workFunction, void ** refCon);
-
- #if !TARGET_OS_MAC
- #endif
- #endif /* CALLCOMPONENT_BASENAME */
-
-
- #endif /* __COMPONENTS_K__ */
-
-